smartdof 2.2.0
smartdof


Smart DOF Click

Smart DOF Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.


Click Library

  • Author : MikroE Team
  • Date : Jan 2020.
  • Type : I2C type

Software Support

Example Description

This Click integrates a triaxial accelerometer, triaxial gyroscope and magnetometer. It can provide very accurate and precise 3D acceleration, magnetic, and angular velocity data, in real-time.

Example Libraries

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.SmartDof

Example Key Functions

Application Init

Initializes I2C driver and Smart DOF device

void application_init ( void )
{
uint8_t p;
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
SMARTDOF_MAP_MIKROBUS( cfg, MIKROBUS_1 );
smartdof_init( &smartdof, &cfg );
if ( smartdof_default_cfg ( &smartdof ) !=0 )
{
log_info( &logger, "Error during default configuration" );
}
}
#define SMARTDOF_MAP_MIKROBUS(cfg, mikrobus)
Definition smartdof.h:66
void application_init(void)
Definition main.c:278

Application Task

Executes one of 'smartdof_xxx_task()' additional functions

void application_task ( void )
{
accelerometer_task( &smartdof, &smartdof_sfc );
}
void application_task(void)
Definition main.c:309
void accelerometer_task(smartdof_t *ctx, smartdof_sfc_t *sfc)
Definition main.c:90

Note

Additional Functions :
- accelerometer_task() - initializes accelerometer reports in 100000 micro second intervals, receives, parses and logs report data
- gyroscope_task() - initializes gyroscope calibrated reports in 100000 micro second intervals, receives, parses and logs report data
- magnetometer_task() - initializes magnetometer calibrated reports in 100000 micro second intervals, receives, parses and logs report data

Application Output

This Click board can be interfaced and monitored in two ways:

  • Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
  • UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.

Additional Notes and Information

The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.